Skip to content

build(deps): bump pytest-aiohttp from 1.1.0 to 1.1.1#1007

Merged
TomerFi merged 1 commit into
devfrom
dependabot/pip/pytest-aiohttp-1.1.1
Jun 8, 2026
Merged

build(deps): bump pytest-aiohttp from 1.1.0 to 1.1.1#1007
TomerFi merged 1 commit into
devfrom
dependabot/pip/pytest-aiohttp-1.1.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor

Bumps pytest-aiohttp from 1.1.0 to 1.1.1.

Release notes

Sourced from pytest-aiohttp's releases.

pytest-aiohttp v1.1.1

pytest-aiohttp

pytest plugin for aiohttp support

The library provides useful fixtures for creation test aiohttp server and client.

Installation

.. code-block:: console

$ pip install pytest-aiohttp

Add asyncio_mode = auto line to pytest configuration <https://docs.pytest.org/en/latest/customize.html>_ (see pytest-asyncio modes <https://github.com/pytest-dev/pytest-asyncio#modes>_ for details). The plugin works with strict mode also.

Usage

Write tests in pytest-asyncio <https://github.com/pytest-dev/pytest-asyncio>_ style using provided fixtures for aiohttp test server and client creation. The plugin provides resources cleanup out-of-the-box.

The simple usage example:

.. code-block:: python

from aiohttp import web

async def hello(request):
return web.Response(body=b"Hello, world")

def create_app():
app = web.Application()
app.router.add_route("GET", "/", hello)
return app

async def test_hello(aiohttp_client):
client = await aiohttp_client(create_app())
resp = await client.get("/")

... (truncated)

Changelog

Sourced from pytest-aiohttp's changelog.

1.1.1 (2026-06-08)

  • Drop Python 3.9 (#162)

  • Typing improvements (#69, #162)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [pytest-aiohttp](https://github.com/aio-libs/pytest-aiohttp) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/aio-libs/pytest-aiohttp/releases)
- [Changelog](https://github.com/aio-libs/pytest-aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/pytest-aiohttp@v1.1.0...v1.1.1)

---
updated-dependencies:
- dependency-name: pytest-aiohttp
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the type: dependencies Pull requests that update a dependency file label Jun 8, 2026
@auto-me-bot auto-me-bot Bot added the status: needs review Pull request needs a review label Jun 8, 2026
@auto-me-bot auto-me-bot Bot added status: approved Pull request is approved and removed status: needs review Pull request needs a review labels Jun 8, 2026
@snyk-io

snyk-io Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

Snyk checks have passed. No issues have been found so far.

Status Scan Engine Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@github-actions

github-actions Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

Test Results

69 tests   69 ✅  1s ⏱️
 1 suites   0 💤
 1 files     0 ❌

Results for commit 4cc5776.

@codecov

codecov Bot commented Jun 8, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 96.07%. Comparing base (cc4fa9d) to head (4cc5776).

Additional details and impacted files
@@           Coverage Diff           @@
##              dev    #1007   +/-   ##
=======================================
  Coverage   96.07%   96.07%           
=======================================
  Files           1        1           
  Lines         331      331           
=======================================
  Hits          318      318           
  Misses         13       13           
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@TomerFi TomerFi merged commit 8044141 into dev Jun 8, 2026
10 checks passed
@TomerFi TomerFi deleted the dependabot/pip/pytest-aiohttp-1.1.1 branch June 8, 2026 02:14
@auto-me-bot auto-me-bot Bot added status: merged Pull request merged and removed status: approved Pull request is approved labels Jun 8, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

status: merged Pull request merged type: dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants